Skip to content

Commit 9a61578

Browse files
committed
Merge branch 'main' of github.com:jgthms/bulma
2 parents 04145fb + 6b4c120 commit 9a61578

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
- Fix #3842: restore use of `$easing`, `$radius-rounded` and `$speed` Sass variables
2323
- Fix #3920: migrate code to avoid Sass 1.80 deprecation warning of global built-in functions
24+
- Fix #3945: add `$duration` Sass variable
2425
- Fix #3822: Non-minified version of bulma-prefixed was missing
2526
- Fix #3805: helper classes were missing prefix
2627

@@ -51,7 +52,7 @@
5152
- `--bulma-input-border-width`
5253
- `--bulma-label-color`
5354
- `--bulma-label-spacing`
54-
- `--bulma-label-weight`
55+
- `--bulma-label-weight`
5556
- `--bulma-help-size`
5657
- `--bulma-field-block-spacing`
5758

@@ -88,7 +89,7 @@
8889
- Fix #3785: make use of the `@prefers-reduced-motion` setting
8990
- Fix #3758: broken links for `0.9.4` version
9091
- Fix #3760: fix form controls typo
91-
92+
9293
### Improvements
9394

9495
- Fix #3737: Move `sass` to `devDependencies`
@@ -178,7 +179,7 @@ The Sass placeholders are:
178179
- `%loader`
179180
- `%overlay`
180181

181-
If you were importing them directly from `utilities/mixins`, you'll need to import `utilities/extends` instead.
182+
If you were importing them directly from `utilities/mixins`, you'll need to import `utilities/extends` instead.
182183
If you were importing `utilities/_all` or even `bulma.sass` directly, no change is required.
183184

184185
### New features

docs/_data/variables/utilities/initial-variables.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,10 @@
184184
"name": "breakpoints",
185185
"value": "(\n \"mobile\": (\n \"until\": $tablet,\n ),\n \"tablet\": (\n \"from\": $tablet,\n ),\n \"tablet-only\": (\n \"from\": $tablet,\n \"until\": $desktop,\n ),\n \"touch\": (\n \"from\": $desktop,\n ),\n \"desktop\": (\n \"from\": $desktop,\n ),\n \"desktop-only\": (\n \"from\": $desktop,\n \"until\": $widescreen,\n ),\n \"until-widescreen\": (\n \"until\": $widescreen,\n ),\n \"widescreen\": (\n \"from\": $widescreen,\n ),\n \"widescreen-only\": (\n \"from\": $widescreen,\n \"until\": $fullhd,\n ),\n \"until-fullhd\": (\n \"until\": $fullhd,\n ),\n \"fullhd\": (\n \"from\": $fullhd,\n ),\n)"
186186
},
187+
{
188+
"name": "duration",
189+
"value": "294ms"
190+
},
187191
{
188192
"name": "easing",
189193
"value": "ease-out"

sass/themes/light.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $scheme-main: hsl(iv.$scheme-h, iv.$scheme-s, $scheme-main-l);
7373

7474
// Other
7575
"block-spacing": iv.$block-spacing,
76-
"duration": 294ms,
76+
"duration": iv.$duration,
7777
"easing": iv.$easing,
7878
"radius-small": iv.$radius-small,
7979
"radius": iv.$radius,

sass/utilities/initial-variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ $breakpoints: (
134134

135135
// Miscellaneous
136136

137+
$duration: 294ms !default;
137138
$easing: ease-out !default;
138139
$radius-small: 0.25rem !default;
139140
$radius: 0.375rem !default;

0 commit comments

Comments
 (0)